home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / pascal / setjmps.com / LOCALCSF.INC < prev    next >
Encoding:
Text File  |  1991-04-06  |  284 b   |  10 lines

  1. (* this function is passed as a procedural variable to setjmp
  2.    so it must be far.  If you're compiling under 5.x, remove the
  3.    "far;" and make sure the units that include this file have {$F+}
  4. *)
  5.  
  6. function localCSfunction:word;   far;
  7. begin
  8.   localCSfunction := CSeg;
  9. end;
  10.